home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 296_01.zip / CTOCPP1.BAT < prev    next >
DOS Batch File  |  1993-04-01  |  113b  |  8 lines

  1. @echo off
  2. rem ctocpp1.bat processes a single file
  3. echo %1
  4. cl /E %1 > foo.tmp
  5. ctocxx < foo.tmp
  6. rm foo.tmp
  7.  
  8.